home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / arm / Kconfig-nommu next >
Encoding:
Text File  |  2008-12-24  |  1.5 KB  |  53 lines

  1. #
  2. # Kconfig for uClinux(non-paged MM) depend configurations
  3. # Hyok S. Choi <hyok.choi@samsung.com>
  4.  
  5. config SET_MEM_PARAM
  6.     bool "Set flash/sdram size and base addr"
  7.     help
  8.      Say Y to manually set the base addresses and sizes.
  9.      otherwise, the default values are assigned.
  10.  
  11. config DRAM_BASE
  12.     hex '(S)DRAM Base Address' if SET_MEM_PARAM
  13.     default 0x00800000
  14.  
  15. config DRAM_SIZE
  16.     hex '(S)DRAM SIZE' if SET_MEM_PARAM
  17.     default 0x00800000
  18.  
  19. config FLASH_MEM_BASE
  20.     hex 'FLASH Base Address' if SET_MEM_PARAM
  21.     default 0x00400000
  22.  
  23. config FLASH_SIZE
  24.     hex 'FLASH Size' if SET_MEM_PARAM
  25.     default 0x00400000
  26.  
  27. config PROCESSOR_ID
  28.     hex 'Hard wire the processor ID'
  29.     default 0x00007700
  30.     depends on !CPU_CP15
  31.     help
  32.       If processor has no CP15 register, this processor ID is
  33.       used instead of the auto-probing which utilizes the register.
  34.  
  35. config REMAP_VECTORS_TO_RAM
  36.     bool 'Install vectors to the begining of RAM' if DRAM_BASE
  37.     depends on DRAM_BASE
  38.     help
  39.       The kernel needs to change the hardware exception vectors.
  40.       In nommu mode, the hardware exception vectors are normally
  41.       placed at address 0x00000000. However, this region may be
  42.       occupied by read-only memory depending on H/W design.
  43.  
  44.       If the region contains read-write memory, say 'n' here.
  45.  
  46.       If your CPU provides a remap facility which allows the exception
  47.       vectors to be mapped to writable memory, say 'n' here.
  48.  
  49.       Otherwise, say 'y' here.  In this case, the kernel will require
  50.       external support to redirect the hardware exception vectors to
  51.       the writable versions located at DRAM_BASE.
  52.